home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol04 / 01b / sleuth / machine.h < prev    next >
Text File  |  1988-10-03  |  597b  |  19 lines

  1. /*-----------------------------------------------------------------*/
  2. /* Machine.h                                                       */
  3. /* Machine dependent declarations.                                 */
  4. /*-----------------------------------------------------------------*/
  5.  
  6. #ifdef PM_MACINTOSH  /* no prototypes in Lightspeed headers! */
  7.  
  8. typedef unsigned int  size_t;
  9.  
  10. void    exit( int );
  11. void*   malloc( size_t );
  12. void*   realloc( void*, size_t );
  13.  
  14. int     vsprintf( char*, char*, void* );
  15.  
  16. #endif
  17.  
  18. /*-----------------------------------------------------------------*/
  19.